-
-
Notifications
You must be signed in to change notification settings - Fork 22
Simplify logic in Diagonal-Tridiagonal multiplication #1338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1338 +/- ##
==========================================
- Coverage 93.74% 93.74% -0.01%
==========================================
Files 34 34
Lines 15775 15766 -9
==========================================
- Hits 14789 14780 -9
Misses 986 986 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Do we have tests for those very small cases? |
Yes, e.g. LinearAlgebra.jl/test/bidiag.jl Lines 1070 to 1137 in 7f354f4
and similarly for Tridiagonal matrices.
|
This improves performance in small
::Diagonal * ::Tridiagonal
multiplications:This also improves TTFX